home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / TEXTMAIN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-05  |  686 b   |  33 lines

  1. unit TextMain;
  2.  
  3. { This project demonstrates a custom TDataSet implementation.
  4.   See TextData.Pas for more info.  You will need to compile and
  5.   install TextPKG.DPK before using this sample. }
  6.  
  7. interface
  8.  
  9. uses
  10.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  11.   TextData, ExtCtrls, DBCtrls, Grids, DBGrids, Db;
  12.  
  13. type
  14.   TTextDataDemoForm = class(TForm)
  15.     DataSource1: TDataSource;
  16.     DBGrid1: TDBGrid;
  17.     DBNavigator1: TDBNavigator;
  18.     TextDataSet1: TTextDataSet;
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   TextDataDemoForm: TTextDataDemoForm;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. end.
  33.